* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;

    font-family: 'Poppins', sans-serif;}
    
header{
    background-color: #000000; /* Black with 70% opacity */
    background: linear-gradient(180deg,#000000,#000000, #000000);
    width: 150%;
    box-shadow: 0 110px 25px #000000;

    position: fixed;
    top: -13px;
    left: 0px;
    width: 150%;
    padding: 20.0rem 4%;
    background-color: transparent;
    filter: drop-shadow(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
}

.container02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1.5s ease-out forwards;
    position: absolute;
    top: 20px;
    left: px;
    z-index: 1000; /* Ensure the button is above other elements */
}

.Music02 {
    top: 10px;
    left: 200px;
    font-size: 1.4rem; /* Adjust size slightly for smaller screens */
    color: #ffffff;
    font-weight: 550;
    cursor: pointer;
    transition: 0.5s ease;
    text-shadow: 0 0 25px #3d7fe2;
}

.Music02:hover {
    color: #3d7fe2;
    transform: scale(1.05) translateY(-5px); /* Slightly larger hover effect */
    text-shadow: 0 0 25px #3d7fe2;
}

.Music02:hover,
.Music02.active {
    color: #3d7fe2;
    border-bottom: 2.5px solid #3c7ee2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .Music02 {
        font-size: 1.2rem; /* Adjust size for tablets */
    }
    .container02 {
        top: 15px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .Music02 {
        font-size: 1rem; /* Smaller size for mobile devices */
    }
    .container02 {
        top: 10px;
        left: 10px;
    }
}

